home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / gle / util / surf / general.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-29  |  519 b   |  27 lines

  1. #include <ctype.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <math.h>
  6. #ifndef unix
  7. #include <stdarg.h>
  8. #endif 
  9. #ifdef __TURBOC__
  10. #include <alloc.h>
  11. #endif
  12. #define false (0)
  13. #define true (!false)
  14. #ifdef unix
  15. #define farmalloc malloc
  16. #endif
  17. #ifdef VAXC
  18. #define farmalloc malloc
  19. char *strdup(char *s);
  20. #endif
  21. #ifndef unix
  22. void gprint(va_list arg_list, ...); 
  23. #endif
  24. FILE *myfopen(char *fname, char *mode);
  25. int read_data(char *infile,float z[], int zdim,float *zmin,float *zmax,int *nx,int *ny);
  26.  
  27.